home *** CD-ROM | disk | FTP | other *** search
/ Hand Picked Software / Hand Picked Software.iso / applicat / amtax94 / printdoc.bat < prev    next >
DOS Batch File  |  1995-03-13  |  832b  |  32 lines

  1. echo off
  2. cls
  3. echo .
  4. echo .
  5. echo .   FOR A BRIEF DOCUMENTATION MANUAL ON AM-TAX:
  6. echo .
  7. echo .   (1) Insert the AM-Tax program disk into drive A: (or B:).
  8. echo .
  9. echo .   (2) Type A:PRINTDOC (or B:PRINTDOC) then press the Enter key.
  10. echo .
  11. echo .   (3) Align the paper in your computer's printer.
  12. echo .
  13. echo .   (4) Turn on your printer.
  14. echo .
  15. echo .   (5) Press any key to start printing... OR
  16. echo .
  17. echo .       TO SKIP THE PRINTING, press CTRL-C now..
  18. pause
  19. if exist *.doc goto start
  20. if exist *.1   goto start
  21. echo.
  22. echo.   ERROR...Documentation file not found.
  23. echo.
  24. echo.   ACTION..Be sure A: (or B:) prompt is on the DOS screen, then retry.
  25. goto end
  26. :start
  27. rem copy *.doc prn  if no *.doc, print readme.1
  28. if exist     *.doc copy *.doc    prn
  29. if not exist *.doc copy readme.1 prn
  30. :end
  31. echo on
  32.